'Declaration
Public Overloads Shared Sub LogWarning( _ ByVal eventId As EventId, _ ByVal exception As Exception, _ ByVal message As String, _ ByVal ParamArray args() As Object _ )
'Usage
Dim eventId As EventId Dim exception As Exception Dim message As String Dim args() As Object Utils.LogWarning(eventId, exception, message, args)
public static void LogWarning( EventId eventId, Exception exception, string message, params object[] args )
public: static void LogWarning( EventId eventId, Exception^ exception, String^ message, ... array<Object^>^ args )
Parameters
- eventId
- The event id associated with the log.
- exception
- The exception to log.
- message
- Format string of the log message in message template format. Example:
"User {User} logged in from {Address}"
- args
- An object array that contains zero or more objects to format.